-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
36 lines (31 loc) · 1.05 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
# -*- coding: utf-8 -*-
from __future__ import with_statement
from distutils.core import setup
def readme():
try:
with open('README.rst') as f:
return f.read()
except (IOError, OSError):
return
setup(
name='typeannotations',
version='0.1.0',
description='A library with a set of tools for annotating types '
'in Python code.',
long_description=readme(),
url='https://github.com/ceronman/typeannotations',
author='Manuel Cerón',
author_email='ceronman' '@' 'gmail.com',
license='Apache License',
packages=['annotation'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)