-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 876 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, Extension, find_packages
module = Extension('PyGol', sources=['PyGol.c'])
setup(
name='PyGol',
version='1.0',
description='PyGol is an ILP system',
author='Dany Varghese',
author_email='[email protected]',
url='https://github.com/danyvarghese/PyGol',
packages=find_packages(),
ext_modules=[module],
install_requires=[
'graphviz',
'tqdm',
'numpy',
'more-itertools',
'texttable',
'Pillow',
'IPython',
'requests',
'beautifulsoup4',
'pandas'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)