-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 1006 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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
with open('./requirements.txt', "r", encoding='utf-16') as f:
required_packages = f.read().splitlines()
setup(
name='optipy',
version='2.0.2',
description='Web Scraping API for getting Optifine VersionsList/Versions/Download-URL.',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
url='https://github.com/GoodDay360/OptiPy',
author='GoodDay360',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=['optifine','api','optifine_api'],
packages=find_packages(exclude=["dist","git","optipy.egg-info","venv"]),
install_requires=required_packages,
python_requires='>=3.6',
)