forked from joowani/binarytree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.08 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
from setuptools import setup, find_packages
version = {}
with open("./binarytree/version.py") as fp:
exec(fp.read(), version)
with open('./README.rst') as fp:
description = fp.read()
setup(
name='binarytree',
description='Python Library for Studying Binary Trees',
long_description=description,
version=version['__version__'],
author='Joohwan Oh',
author_email='joohwan.oh@outlook.com',
url='https://github.com/joowani/binarytree',
packages=find_packages(exclude=['tests']),
include_package_data=True,
tests_require=['pytest', 'flake8'],
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Education'
]
)