-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsetup.py
33 lines (29 loc) · 898 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
33
import os
from setuptools import setup, find_packages
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').splitlines()
tests_requirements = read('REQUIREMENTS-TESTS').splitlines()
setup(
name="crab",
version="0.1.git",
description="",
long_description=read('README.rst'),
url='https://github.com/python-recsys/crab',
license='BSD',
author='Marcel Caraciolo',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
install_requires=requirements,
tests_require=tests_requirements,
)