-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (37 loc) · 1.21 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
import os
from setuptools import setup
def get_version():
with open("pyavagen/version.py", "rt") as f:
return f.readline().split("=")[1].strip(' "\n')
cur_dir = os.path.abspath(os.path.dirname(__file__))
setup(
name='pyavagen',
version=get_version(),
author='Alexander Abrosimov',
author_email='to100100100@gmail.com',
url='https://github.com/abalx/pyavagen',
description='Generation of customizable avatars',
long_description=open(os.path.join(cur_dir, 'README.rst')).read(),
license='MIT',
requires=['python (>= 3.3)', ],
tests_require=['pytest'],
install_requires=[
'Pillow',
],
packages=[
'pyavagen',
],
include_package_data=True,
keywords=['image', 'avatar', 'picture', 'generator'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Topic :: Multimedia :: Graphics",
],
)