-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
77 lines (70 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
import sys, os
from glob import glob
# Install setuptools if it isn't available:
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import find_packages
from setuptools import setup
NAME = 'neuroarch'
VERSION = '0.4.3'
AUTHOR = 'Lev Givon, Nikul Ukani, Yiyin Zhou'
URL = 'https://github.com/fruitflybrain/neuroarch/'
MAINTAINER = 'Yiyin Zhou'
MAINTAINER_EMAIL = '[email protected]'
DESCRIPTION = 'A graph-based platform for representing Drosophila brain architectures'
LONG_DESCRIPTION = DESCRIPTION
DOWNLOAD_URL = URL
LICENSE = 'BSD'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Scientific/Engineering',
'Topic :: Software Development']
NAMESPACE_PACKAGES = ['neuroarch']
PACKAGES = find_packages()
docs_extras = [
'sphinx >= 1.3',
'sphinx_rtd_theme >= 0.1.6',
]
if __name__ == "__main__":
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
setup(
name = NAME,
version = VERSION,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
license = LICENSE,
classifiers = CLASSIFIERS,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
url = URL,
maintainer = MAINTAINER,
maintainer_email = MAINTAINER_EMAIL,
namespace_packages = NAMESPACE_PACKAGES,
packages = PACKAGES,
include_package_data = True,
install_requires = [
'daff',
'networkx>=2.4',
'numpy',
'pandas',
'path.py',
'pyorient @ https://github.com/fruitflybrain/pyorient/tarball/v1.6.1#egg=pyorient-1.6.1',
'pyorient_native @ https://github.com/fruitflybrain/pyorient_native/tarball/master#egg=pyorient_native-1.2.3',
'deepdiff',
'tqdm'],
extra_requires = {
'doc': docs_extras,
}
)