-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.15 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
from setuptools import setup, find_packages
import os
# Retrieve the version from the environment variable or use a default value
version = os.getenv('CUSTOM_VERSION', '1.0.0')
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='aproxyrelay',
version=version,
packages=find_packages(),
install_requires=[
'aiohttp',
'aiohttp_socks',
'beautifulsoup4',
],
extras_require={
'dev': [
'build',
'flake8-bugbear',
'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-sugar',
'pytest-xdist',
'setuptools',
'twine',
'wheel',
],
},
entry_points={
'console_scripts': [
'myproject-cli = myproject.module1:main',
],
},
author='undeƒined',
author_email='[email protected]',
description='A Proxy Relay, forwarding requests through different IP.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/my-dev-app/proxy-relay',
license='GNU AGPLv3',
)