-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (23 loc) · 901 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, find_packages
DESCRIPTION = """Python Lunar Calendar
"""
setup(name='pylunardate',
version='0.0.3',
packages=['lunardate'],
description = 'A Korean Calendar Library in Pure Python',
long_description=DESCRIPTION,
author = 'charsyam',
author_email = '[email protected]',
url = 'https://github.com/charsyam/pylunardate',
license = 'BSD',
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries'
]
)