Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
71 lines (64 loc) · 1.95 KB
/
Copy pathsetup.py
File metadata and controls
71 lines (64 loc) · 1.95 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
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
#!/usr/bin/env python
importsys, os
fromglobimportglob
# Install setuptools if it isn't available:
try:
importsetuptools
exceptImportError:
fromez_setupimportuse_setuptools
use_setuptools()
fromdistutils.command.install_headersimportinstall_headers
fromsetuptoolsimportfind_packages
fromsetuptoolsimportsetup
NAME='VisTrans'
VERSION='0.1'
AUTHOR='Yiyin Zhou'
AUTHOR_EMAIL='yiyin@ee.columbia.edu'
URL=''
MAINTAINER=AUTHOR
MAINTAINER_EMAIL=AUTHOR_EMAIL
DESCRIPTION=''
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 :: Scientific/Engineering',
'Topic :: Software Development']
# Explicitly switch to parent directory of setup.py in case it
# is run from elsewhere:
os.chdir(os.path.dirname(os.path.realpath(__file__)))
PACKAGES=find_packages()
if__name__=="__main__":
ifos.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,
packages=PACKAGES,
package_data= {"img": ["*.svg"],
"submodules": ["*.js"]},
python_requires='>=3.7',
install_requires= [
'numpy',
'scipy',
'future',
'scikit-cuda',
'pycuda',
'neurokernel >= 0.3.0'
],
)