forked from ixc/python-edtf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (49 loc) · 1.37 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
49
50
51
52
from __future__ import print_function
import setuptools
import sys
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='edtf',
use_scm_version={'version_scheme': 'post-release'},
url='https://github.com/ixc/python-edtf',
author='Greg Turner',
author_email='[email protected]',
description='Python implementation of Library of Congress EDTF (Extended '
'Date Time Format) specification',
long_description=readme(),
long_description_content_type="text/markdown",
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'python-dateutil',
'pyparsing',
'six'
],
extras_require={
'test': [
'django',
'nose',
'tox',
],
},
setup_requires=[
'setuptools_scm',
],
keywords=[
'edtf',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
)