File: setup.py

package info (click to toggle)
python-rfc3987 1.3.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 160 kB
  • sloc: python: 420; sh: 8; makefile: 4
file content (41 lines) | stat: -rwxr-xr-x 1,452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

import rfc3987

desc, _sep, long_desc = rfc3987.__doc__.partition('.')

setup(name='rfc3987',
      version= rfc3987.__version__,
      description=desc.strip(),
      long_description=long_desc.lstrip().format(**rfc3987.__dict__),
      author='Daniel Gerber',
      author_email='daniel.g.gerber@gmail.com',
      url='http://pypi.python.org/pypi/rfc3987',
      download_url='https://github.com/dgerber/rfc3987',
      py_modules=['rfc3987'],
      # requires=['regex'],
      keywords='URI IRI URL rfc3986 rfc3987 validation',
      license='GNU GPLv3+',
      classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.2',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Topic :: Internet'
        ]
     )