-
Notifications
You must be signed in to change notification settings - Fork 176
/
setup.py
40 lines (33 loc) · 1.09 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
import os
from setuptools import find_packages, setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as opened:
return opened.read()
def main():
setup(
name='tffm',
version='1.0.2',
author="Mikhail Trofimov",
author_email="[email protected]",
url='https://github.com/geffy/tffm',
download_url='https://github.com/geffy/tffm/archive/1.0.2.tar.gz',
description=('TensforFlow implementation of arbitrary order '
'Factorization Machine'),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
license='MIT',
install_requires=[
'scikit-learn',
'numpy',
'tqdm'
],
packages=find_packages()
)
if __name__ == "__main__":
main()