-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
46 lines (41 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# encoding: utf-8
"""Packaging script."""
import os
from setuptools import setup
__version__ = "0.15.0"
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=__version__,
author="Elmotec",
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=">=3.5",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Developers",
],
)