-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 884 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
from setuptools import setup, find_packages
import sys
if sys.version_info<(3,):
sys.exit("Sorry, Python 3 is required for Caver")
with open("requirements.txt", "r") as f:
reqs = [l for l in f.read().splitlines() if l]
setup(
name="TorchCTR",
version="0.2",
description="CTR in PyTorch",
# long_description=readme,
author='Guokr Inc.',
author_email='jinyang.zhou@guokr.com',
url="https://github.com/guokr/TorchCTR",
packages=find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Topic :: Text Processing',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
),
entry_points={
'console_scripts': [
# 'trickster_train=trickster::train',
]
},
install_requires=reqs
)