forked from elmotec/circlify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
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 python
# encoding: utf-8
"""Packaging script."""
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
readme = open(os.path.join(here, 'README.rst')).read()
setup(
name="circlify",
description='Circle packing algorithm for Python',
long_description=readme,
long_description_content_type='text/x-rst',
version="0.9.1",
author="Jérôme Lecomte",
author_email="[email protected]",
license="MIT",
keywords="circle packing enclosure hierarchy graph display visualization",
url="http://github.com/elmotec/circlify",
py_modules=['circlify'],
test_suite='tests',
setup_requires=[],
tests_require=[],
python_requires='>2.7,>=3.3',
classifiers=["Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Developers",
],
)