-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (23 loc) · 831 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
import setuptools
with open('carmen/__init__.py') as fid:
for line in fid:
if line.startswith('__version__'):
VERSION = line.strip().split()[-1][1:-1]
break
setuptools.setup(
name="carmenproxy",
version=VERSION,
url="https://github.com/mark-hoffmann/fastteradata",
author="Mark Hoffmann",
author_email="[email protected]",
description="Tool for proxying programmatic HTTP requests.",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=['beautifulsoup4','bs4','fake-useragent','pytest'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)