-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 930 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 930 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
import sys
if sys.version_info < (2, 6, 0):
print('You need Python 2.6 or better to install isoweek')
sys.exit(1)
from setuptools import setup
setup(
name = 'isoweek',
version = '1.3.3',
description = 'Objects representing a week',
author='Gisle Aas',
author_email='gisle@aas.no',
url='http://github.com/gisle/isoweek',
py_modules=['isoweek'],
license='BSD',
long_description=open("README.rst").read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)