-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
25 lines (25 loc) · 979 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
from distutils.core import setup
requires = ['mpmath']
setup(
name = "lunisolar",
packages = ["lunisolar", "pycalcal"],
install_requires=requires,
version = "0.1.3",
description = "A library to handle the Chinese calendar",
long_description=open('README.rst').read(),
author = "Lee Wei Yen",
author_email = "[email protected]",
url = "https://github.com/yen223/lunisolar",
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: Sociology",
"Topic :: Software Development :: Internationalization"
]
)