-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.27 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.27 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
from setuptools import setup, find_packages
import os
import re
import sys
with open('README') as fd:
long_description = fd.read()
setup(
name='Sapphire',
version='1.0.0',
url='https://github.com/JonesRobM/Sapphire.git',
description='A pythonic post-processing environment for the analysis on NanoAlloys',
author='Robert Michael Jones',
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
author_email='Robert.M.Jones@kcl.ac.uk',
package_dir={'': 'main'},
packages=find_packages(where="main"),
install_requires=[
'numpy',
'networkx',
'numba',
'networkx',
'pandas',
'ase',
'scipy',
'sklearn',
'ruptures',
'tensorflow',
'pygdm2',
'mir-flare',
'networkx',
'scikit-learn'
],
extras_require={'plotting': ['matplotlib', 'jupyter', 'seaborn']},
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest'],
long_description=long_description
#entry_points={
# 'console_scripts': ['my-command=exampleproject.example:main']
#}
#package_data={'exampleproject': ['data/schema.json']}
)