-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
61 lines (55 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import sys
import os
import shutil
import re
from setuptools import setup, find_packages
__version__ = '23.11.0'
if True:
with open('requirements-pinned.txt', 'r') as f:
requires = f.readlines()
else:
# you may like to do this for local / dev usage to get latest
# versions, etc.
with open('requirements-min.txt', 'r') as f:
requires = f.readlines()
setup(
name='carml',
version=__version__,
author='meejah',
author_email='[email protected]',
url='https://github.com/meejah/carml',
license='Public Domain (http://unlicense.org/)',
description='A command-line tool to query and control a running Tor. Based on txtorcon + Twisted.',
long_description=open('README.rst', 'r').read(),
## long_description_type='rst',
keywords=['python', 'twisted', 'tor', 'command-line', 'cli'],
install_requires=requires,
classifiers=[
'Framework :: Twisted',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: System :: Networking',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet',
'Topic :: Security',
'Topic :: Utilities'],
packages=find_packages(),
entry_points={
'console_scripts': [
'carml = carml.cli:carml'
]
},
include_package_data=True,
package_data={'': ['*.asc', '*.pem']},
data_files=[
('share/carml', ['README.rst', 'meejah.asc']),
('share/carml/doc/', ['doc/' + x for x in filter(lambda x: x.endswith('.rst'), os.listdir('doc'))]),
]
)