forked from delimitry/aztec_code_generator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·32 lines (30 loc) · 1.08 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
#!/usr/bin/env python3
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.version_info < (3,4):
sys.exit("Python 3.4+ is required; you are using %s" % sys.version)
setup(name="aztec_code_generator",
version="0.11",
description='Aztec Code generator in Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Dmitry Alimov',
author_email="dvalimov@gmail.com",
maintainer='Daniel Lenski',
maintainer_email='dlenski@gmail.com',
install_requires=open('requirements.txt').readlines(),
extras_require={
"Image": [
"pillow>=3.0,<6.0; python_version < '3.5'",
"pillow>=3.0,<8.0; python_version >= '3.5' and python_version < '3.6'",
"pillow>=8.0; python_version >= '3.6'",
]
},
tests_require=open('requirements-test.txt').readlines(),
license='MIT',
url="https://github.com/dlenski/aztec_code_generator",
py_modules=["aztec_code_generator"],
)