-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
49 lines (45 loc) · 1.31 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
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(here,'README.md')) as f:
return f.read()
setup(name='paysage',
version='0.2.1',
description='Machine learning with energy based models in python',
long_description=readme(),
url='https://github.com/drckf/paysage',
author='Unlearn.AI',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
package_data={
'': ['*.json', '*.py']
},
install_requires=[
'matplotlib',
'numexpr',
'numpy',
'pandas',
'pytest',
'scipy',
'seaborn',
'tables',
'torchvision',
'cytoolz'
],
tests_require=[
'pytest'
],
python_requires='>=3.6',
zip_safe=False)