-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·31 lines (26 loc) · 1 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
from setuptools import find_packages
_name = 'immutablecollections'
with open(join(dirname(abspath(__file__)), _name, 'version.py')) as version_file:
exec(compile(version_file.read(), "version.py", 'exec'))
setup(name=_name,
version=version,
author='Ryan Gabbard <[email protected]> and Constantine Lignos <[email protected]>',
author_email='[email protected]',
description='Immutable Collections (inspired by Google Guava)',
url='https://github.com/isi-vista/immutablecollections',
packages=['immutablecollections'],
package_data={'immutablecollections': ['py.typed']},
# 3.6 and up, but not Python 4
python_requires='~=3.6',
install_requires=[
'typing_extensions',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)