-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 1.13 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
from setuptools import find_packages, setup
def read_file(name):
with open(name, 'r') as f:
return f.read()
setup(
name="vecnet.simulation",
version="0.2",
# Metadata for PyPI
description="Library for simulation models in VecNet",
long_description=read_file('README.rst'),
author="VecNet Team, Center for Research Computing, University of Notre Dame",
author_email="[email protected]",
url="https://github.com/jimm-domingo/vecnet.simulation",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# This keyword argument is a workaround to ensure the classifiers appear on PyPI if the package is created with
# Python 2.7.2 or earlier (see http://stackoverflow.com/q/26284609/1258514 for details).
provides=['vecnet.simulation'],
packages=find_packages(),
namespace_packages=['vecnet', ],
)