-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (24 loc) · 895 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
34
35
import codecs
from os.path import abspath, dirname, join
from setuptools import find_packages, setup
from pip.req import parse_requirements
here = abspath(dirname(__file__))
PACKAGE_VERSION = '0.1.1'
with codecs.open(join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
install_reqs = parse_requirements(join(here, 'requirements.txt'), session=False)
reqs = [str(ir.req) for ir in install_reqs]
setup(
name='fallball-connector',
version=PACKAGE_VERSION,
author='APS Lite team',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
include_package_data=True,
setup_requires=['nose>=1.0'],
install_requires=reqs,
url='https://github.com/odin-public/',
license='Apache License',
description='A sample connector for FallBall file sharing application',
long_description=long_description,
)