-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 868 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 868 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
28
29
30
31
32
import sys
try:
from setuptools import setup
except ImportError:
from distutils import setup
readme = open('README.rst', 'r')
README_TEXT = readme.read()
readme.close()
setup(
name='aniso8601',
version='1.00',
description='A fake replacement library for the aniso8601 library.',
long_description=README_TEXT,
author='Jake Moshenko',
author_email='jake@devtable.com',
url='https://github.com/DevTable/aniso8601-fake',
packages=['aniso8601'],
package_dir={
'aniso8601' : 'aniso8601',
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)