-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (28 loc) · 983 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from typing import (
List
)
from pathlib import Path
from setuptools import setup, find_packages
def get_requirements() -> List[str]:
"""Build the requirements list for this project"""
requirements_list = []
with Path("requirements.txt").open(encoding="UTF-8") as reqs:
for install in reqs:
if install.startswith("#"):
continue
requirements_list.append(install.strip())
return requirements_list
setup(
name='python-payeer-asyncio',
version='0.1',
description='AsyncIO Payeer Client',
long_description=Path('README.md').read_text(encoding='UTF-8'),
author='HK-Mattew',
author_email='[email protected]',
url='https://github.com/HK-Mattew/python-payeer-asyncio',
packages=find_packages(),
install_requires=get_requirements(),
license='MIT license',
keywords=['payeer', 'payeer asyncio', 'payeer async']
)