-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.66 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.66 KB
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
#!/usr/bin/env python
#
# This file is part of the vecnet 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/.
#
from setuptools import setup, find_packages
setup(
name="vecnet",
version="1.0.0",
author="University of Notre Dame",
author_email="dev@vecnet.org",
description="Virtual package for installing all packages in vecnet namespace",
license="MPL 2.0",
keywords="openamalaria 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', ],
install_requires=['vecnet.openmalaria', 'vecnet.emod'],
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",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)