-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 765 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 765 Bytes
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
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="BrainModulyzer",
version="0.0.0",
maintainer="Sugeerth Murugesan",
maintainer_email="smuru@ucdavis.edu",
description=("A visualizer for brain networks"),
license="BSD",
package_data={'brainmodulyzer':['src/*']},
scripts=['src/RunProjectMain.py'],
url="https://github.com/sugeerth/BrainModulyzer",
long_description=read('README'),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Visualization",
],
platforms=['any'],
)