-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
42 lines (35 loc) · 1.22 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
import os
from setuptools import setup, find_packages
VERSION = "1.0.0"
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
return fh.read()
except IOError:
return ''
requirements = read('requirements.txt').splitlines()
setup(
name="django-recommends",
version=VERSION,
description="A django app that builds item-based suggestions for users",
long_description=read('README.rst'),
url='https://github.com/python-recsys/django-recommends',
license='MIT',
author='Flavio Curella',
author_email='flavio.curella@gmail.com',
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Topic :: Scientific/Engineering :: Information Analysis',
],
install_requires=requirements,
)