forked from myusuf3/delorean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 1.36 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
47
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from version import __version__
dependencies = [
'babel>=2.1.1',
'humanize>=0.5.1',
'python-dateutil>=2.4.2',
'pytz>=2015.7',
'tzlocal>=1.2']
setup(
name='Delorean',
version='.'.join(str(x) for x in __version__),
description='library for manipulating datetimes with ease and clarity',
url='https://github.com/myusuf3/delorean',
author='Mahdi Yusuf',
author_email="[email protected]",
packages=[
'delorean',
],
license='MIT license',
install_requires=dependencies,
test_suite = 'tests.test_data',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)