-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 980 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 980 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
33
from setuptools import setup
# Read the version from a file to be sure it is consistent with the version
# in the package
with open('VERSION.txt') as infile:
version = infile.readline().strip()
setup(
name='simopt',
version=version,
description='SIMple OPTion parser',
long_description=open("README.md").read(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
keywords='simple option parser',
url='http://github.com/Tsjerk/simopt',
download_url='https://github.com/Tsjerk/simopt/archive/v0.1.tar.gz',
author='Tsjerk A. Wassenaar',
author_email='tsjerkw@gmail.com',
license='MIT',
py_modules=['simopt'],
install_requires=[
],
# test_suite='nose.collector',
# tests_require=['nose', 'nose-cover3'],
# entry_points={
# },
include_package_data=True,
zip_safe=False
)