forked from rbtcollins/funcsigs
-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
47 lines (44 loc) · 1.68 KB
/
setup.py
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
42
43
44
45
46
47
#!/usr/bin/env python
from setuptools import setup
import re
import sys
def load_version(filename='funcsigs/version.py'):
"Parse a __version__ number from a source file"
with open(filename) as source:
text = source.read()
match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", text)
if not match:
msg = "Unable to find version number in {}".format(filename)
raise RuntimeError(msg)
version = match.group(1)
return version
setup(
name="funcsigs",
version=load_version(),
packages=['funcsigs'],
zip_safe=False,
author="Testing Cabal",
author_email="[email protected]",
url="https://github.com/testing-cabal/funcsigs",
description="Python function signatures from PEP362 for Python 2.7 and 3.4+",
long_description=open('README.rst').read(),
license="ASL",
setup_requires = ["setuptools>=17.1"],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
],
tests_require = ['unittest2'],
test_suite = 'unittest2.collector',
)