-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
26 lines (24 loc) · 966 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(name='tarjan',
version='0.2.5.dev0',
description='Implementation of Tarjan\'s algorithm: resolve cyclic deps',
long_description='{0:s}\n{1:s}'.format(
open('README.rst').read(),
open('CHANGES.rst').read()),
author='Bas Westerbaan',
author_email='bas@westerbaan.name',
url='http://github.com/bwesterb/py-tarjan/',
packages=['tarjan', 'tarjan.tests'],
zip_safe=True,
test_suite='tarjan.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)