-
Notifications
You must be signed in to change notification settings - Fork 128
/
setup.py
48 lines (44 loc) · 1.48 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
48
#!/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.10.3',
'humanize>=4.2.2',
'python-dateutil>=2.8.2',
'pytz>=2022.1',
'tzlocal>=4.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(),
python_requires='>=3.0, !=3.0.*',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)