-
Notifications
You must be signed in to change notification settings - Fork 114
/
setup.py
28 lines (27 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name="recnn",
version="0.1",
description="A Python toolkit for Reinforced News Recommendation.",
long_description="A Python toolkit for Reinforced News Recommendation.",
author="Mike Watts",
author_email="[email protected]",
license="Apache 2.0",
packages=find_packages(),
install_requires=[
"torch",
"numpy",
],
url="https://github.com/awarebayes/RecNN",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
"Programming Language :: Python :: 3", # Specify which pyhton versions that you want to support
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)