-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
executable file
·37 lines (33 loc) · 1.15 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
version = '0.1.0'
description = 'Static and runtime typechecking for Python'
url='https://github.com/mvitousek/reticulated'
long_description = '''
Reticulated Python provides combined static and dynamic typing, aka
gradual typing, to Python3.'''.lstrip()
setup(
name='retic',
version=version,
packages=find_packages(exclude=['tests*']),
description=description,
long_description=long_description,
url=url,
author='Michael M. Vitousek',
author_email='mmvitousek@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Indended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
keywords='type types typing typecheck typechecking typechecker gradual',
entry_points={
'console_scripts': [
'retic = retic.retic:main'
]})