-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
36 lines (32 loc) · 1.09 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
from setuptools import setup, find_packages
from fryer import VERSION
with open('requirements.txt') as req:
requirements = req.readlines()
with open('README.md') as read:
readme = read.read()
setup(
name='image-fryer',
author='NahuLD',
author_email='contact@nahu.me',
url='https://github.com/NahuLD/image-fryer',
version=VERSION,
packages=find_packages(),
license='MIT',
description='Your favorite deep frying image library',
long_description=readme,
long_description_content_type='text/markdown',
include_package_data=True,
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
)