-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 1.06 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
import os
from distutils.core import setup
setup(
name="sumatra-server",
version="0.3.0",
url="https://github.com/open-research/sumatra-server",
download_url="https://pypi.org/project/sumatra-server/",
license="BSD 2-clause",
description="Sumatra Server is a Django app that implements an HTTP-based store for records of computational experiments.",
long_description=open("README.rst").read(),
author="Andrew Davison",
author_email="[email protected]",
packages=["sumatra_server", "sumatra_server.templatetags", "sumatra_server.migrations"],
package_data={"sumatra_server": ["templates/*.html", "fixtures/*.json"]},
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Internet :: WWW/HTTP",
],
)