-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.3 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
from setuptools import setup, find_packages
from src.__version__ import version
with open('README.md', mode='r') as file:
long_description = file.read()
with open('COPYING', mode='r') as file:
license = file.read()
with open('requirements.txt', mode='r') as file:
required = file.read().splitlines()
setup(
name='adventofcode-initializer',
version=version,
license=license,
author='Sergio Marín Sánchez',
author_email='serms1999@gmail.com',
description='Download Advent of Code problems as markdown files and also its inputs',
long_description_content_type='text/markdown',
long_description=long_description,
url='https://github.com/Serms1999/advent-initializer',
download_url=f'https://github.com/Serms1999/advent-initializer/releases/tag/v{version}',
keywords=['advent-of-code', 'development', 'markdown'],
packages=find_packages(),
python_requires='>=3.6',
install_requires=required,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
"Environment :: Console",
"Natural Language :: English"
],
entry_points={
'console_scripts': {'adventofcode-initializer = src.__main__:main'}
}
)