-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
47 lines (40 loc) · 1.26 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
import os
import shutil
import subprocess
from setuptools import setup, find_packages
from setuptools.command.install import install
# This will enable the nbextensions utility
# class PostInstallCommand(install):
# """Post-installation for installation mode."""
# def run(self):
# install.run(self)
# os.system('jupyter contrib nbextension install')
# os.system('jupyter nbextension enable toc2/main')
PACKAGES = find_packages()
# Get version and release info, which is all stored in shablona/version.py
ver_file = os.path.join('niedu', 'version.py')
with open(ver_file) as f:
exec(f.read())
opts = dict(
name=NAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url=URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
classifiers=CLASSIFIERS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
platforms=PLATFORMS,
version=VERSION,
packages=PACKAGES,
include_package_data=True,
install_requires=["neurodesign@git+https://github.com/lukassnoek/neurodesign.git", REQUIRES],
zip_safe=True,
#cmdclass={'install': PostInstallCommand},
ignore_package_data={'': [".git"]}
)
if __name__ == '__main__':
setup(**opts)