forked from WassimTenachi/PhySO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 649 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (21 loc) · 649 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
import setuptools
VERSION = '1.0dev'
DESCRIPTION = 'Physical Symbolic Optimization'
#REQUIRED = open("requirements_pip.txt").read().splitlines()
#EXTRAS = {
# "display": [
# "pygraphviz",
# ],
#}
#EXTRAS['all'] = list(set([item for group in EXTRAS.values() for item in group]))
setuptools.setup(
name = 'physo',
version = VERSION,
description = DESCRIPTION,
author = 'Wassim Tenachi',
author_email = 'w.tenachi@gmail.com',
license = 'MIT',
packages = setuptools.find_packages(),
#install_requires = REQUIRED,
#extras_require = EXTRAS,
)