-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (30 loc) · 867 Bytes
/
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
from setuptools import setup
exec(open('gremlin/__version__.py').read())
# Use the README as the long_description
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='gremlin',
version=__version__,
packages=['gremlin'],
scripts=['gremlin/gremlin.py'],
python_requires=">=3.7.0",
url='https://github.com/markcoletti/gremlin',
license='MIT License',
author='Mark Coletti',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
description=('Adversarial evolutionary algorithm for training data '
'optimization'),
entry_points={
"console_scripts": [
"gremlin = gremlin:main"
]
},
install_requires=[
'leap-ec',
'omegaconf',
'tqdm',
'rich']
)