forked from openworm/owmeta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1019 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
long_description = open("README.md").read()
setup(
install_requires=required,
name = "PyOpenWorm",
version = '0.0.1-alpha',
packages = ['PyOpenWorm', 'tests'],
author = "OpenWorm.org authors and contributors",
author_email = "info@openworm.org",
description = "A Python library for working with OpenWorm data and models",
long_description = long_description,
license = "BSD",
url="http://github.com/openworm/pyopenworm",
download_url = 'https://github.com/openworm/PyOpenWorm/tarball/0.0.1-alpha',
classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering']
)