-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 968 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 968 Bytes
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
from setuptools import setup
__VERSION__ = "1.0.0"
def get_requirements(file_path):
with open(file_path, 'r') as f:
requirements = f.read().splitlines()
return requirements
setup(
name = "potparser",
packages=['potparser', 'potparser.helpers', 'potparser.utils', 'potparser.views', 'potparser.webscrapers'],
version = __VERSION__,
description = "A strain webscraper",
long_description = open('README.md', 'r').read(),
long_description_content_type = 'text/markdown',
author = "V2BlockBuster2K",
url = "https://github.com/V2BlockBuster2K/PotParser",
license = "GPLv3",
entry_points={
'console_scripts': ['potparser=potparser.cli:main']
},
classifiers = [
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
install_requires=get_requirements('requirements.txt'),
)