-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
59 lines (49 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup
import os
import GAML
def read(*names):
values = {}
extensions = ['', '.txt', '.rst', '.md',]
for name in names:
v = ''
for ext in extensions:
filename = name + ext
if os.path.isfile(filename):
with open(filename) as f:
v = f.read()
values[name] = v
return values
long_description = """%(README)s""" % read('README')
setup(
name='GAML',
version=GAML.__version__,
description='Genetic Algorithm Machine Learning',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
],
author='Orlando Acevedo',
author_email='[email protected]',
keywords='Computational Chemistry Genetic Algorithm Machine Learning',
maintainer='Xiang Zhong',
maintainer_email='[email protected]',
url='https://github.com/orlandoacevedo/GAML',
license='MIT',
packages=['GAML'],
package_data={'GAML':['scripts/*'],},
entry_points={
'console_scripts': [
'gaml = GAML.main:cmd_line_runner',
]
},
install_requires=['matplotlib'],
)