-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 1.13 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Created by asmoker on 04/11/2017.
import os
from setuptools import setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name='btrackers-postman',
version='1.0.1',
packages=['btp', 'btp.util'],
url='https://github.com/asmoker/btrackers-postman',
license='Apache-2.0',
author='asmoker',
author_email='[email protected]',
description='BitTorrent Trackers Postman, fetch BitTorrent Trackers URL list from '
'https://github.com/ngosang/trackerslist and post to your aria2 server via jsonrpc.',
keywords='BitTorrent Trackers aria2 trackerslist jsonrpc update post postman',
long_description=read('README.md'),
install_requires=read('requirements.txt').split('\n'),
entry_points={
'console_scripts': ['btp=btp.run:main'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Environment :: Console',
]
)