-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (44 loc) · 1.97 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
#!/usr/bin/env python
#
# This file is part of the vecnet.openmalaria package.
# For copyright and licensing information about this package, see the
# NOTICE.txt and LICENSE.txt files in its top-level directory; they are
# available at https://github.com/vecnet/vecnet.openmalaria
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License (MPL), version 2.0. If a copy of the MPL was not distributed
# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os
from setuptools import setup, find_packages
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "vecnet", "openmalaria", "__about__.py")) as f:
exec(f.read(), about)
setup(
name="vecnet.openmalaria",
version=about["VERSION"],
author="University of Notre Dame",
author_email="[email protected]",
description="Openmalaria library for VecNet-CI project",
license="MPL 2.0",
keywords="openmalaria malaria vecnet",
url="https://github.com/vecnet/vecnet.openmalaria",
# find_packages() takes a source directory and two lists of package name patterns to exclude and include.
# If omitted, the source directory defaults to the same directory as the setup script.
packages=find_packages(), # https://pythonhosted.org/setuptools/setuptools.html#using-find-packages
namespace_packages=['vecnet', ],
scripts=['scripts/om_expand.cmd', 'scripts/om_expand'],
install_requires=['six'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)