-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 758 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 758 Bytes
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
from setuptools import setup
long_description = open("README.rst", "r").read()
setup(name='DateJS',
description='Python Library that converts Javascript Date objects to Python Datetime objects',
version='0.5',
long_description=long_description,
url='https://github.com/rithik/DateJS',
author='Rithik Yelisetty',
author_email='rithik@gmail.com',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
packages=['DateJS'],
install_requires=[
'JSPy>=1.0.0',
'pytz>=2016.10'
],
entry_points={
'console_scripts': [
'DateJS=DateJS.main:run'
]
}
)