-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.87 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
from setuptools import setup, find_packages
import re
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt', 'r', encoding='utf-8') as f:
install_requires = f.read().splitlines()
with open('volleystats/version.py', 'r', encoding='utf-8') as f:
version = re.search(r"^__version__\s*=\s*'(.*)'.*$",
f.read(), flags=re.MULTILINE).group(1)
setup(
name='volleystats',
version=version,
author='Claromes',
author_email='support@claromes.com',
description='Command-line tool to scrape volleyball statistics from Data Project Web Competition websites',
license='GPLv3',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='volleyball sports command-line datasets analytics',
url='https://github.com/claromes/volleystats',
project_urls={
'Documentation': 'https://github.com/claromes/volleystats#documentation',
'Releases': 'https://github.com/claromes/volleystats/releases',
'Bug Tracker': 'https://github.com/claromes/volleystats/issues'
},
packages=find_packages(exclude=['docs']),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Scrapy',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Utilities'
],
python_requires='>=3.8',
install_requires=install_requires,
entry_points = {
'console_scripts': [
'volleystats = volleystats.main:main',
],
},
)