forked from posborne/putio-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.24 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
from setuptools import setup, find_packages
import putiosync
__author__ = 'Paul Osborne'
def get_requirements():
reqs = []
for line in open('requirements.txt').readlines():
if line and not line.startswith('#'):
reqs.append(line)
return reqs
setup(
name='putiosync',
version=putiosync.__version__,
description='Automatically download content from put.io',
long_description=open('README.rst').read(),
author=putiosync.__author__,
author_email='[email protected]',
url="http://posborne.github.io/putio-sync/",
license='MIT',
packages=find_packages(),
entry_points={'console_scripts': ['putiosync=putiosync.frontend:main']},
install_requires=get_requirements(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
]
)