-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 loc) · 1.19 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# All dependences
deps = {
'test': [],
'dev': ['iconsdk', 'tbears', 'pylint', 'autopep8', 'rope', 'black',],
}
install_requires = []
extra_requires = deps
test_requires = deps['test']
with open('README.adoc') as readme_file:
long_description = readme_file.read()
setup(
name='megaloop_lottery',
version='0.0.1',
description='A simple and incentived lottery Dapp on ICON network',
long_description=long_description,
long_description_content_type='text/asciidoc',
author='duyyudus',
author_email='[email protected]',
url='https://github.com/duyyudus/megaloop-lottery',
include_package_data=True,
tests_require=test_requires,
install_requires=install_requires,
extras_require=extra_requires,
license='MIT',
zip_safe=False,
keywords='Lottery Dapp',
python_requires='>=3.6',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
],
)