-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (36 loc) · 1.26 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
44
45
46
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'hotbits',
description = 'Python API for HotBits random data generator',
long_description = readme(),
long_description_content_type='text/markdown',
license = 'GPLv3+',
version_format='{tag}',
setup_requires=['setuptools-git-version'],
packages = ['hotbits'],
entry_points = {
'console_scripts': ['hotbits=hotbits.__main__:main'],
},
extras_require = {
'lint': ['pylint'],
},
python_requires = '>= 3.4',
author = 'Filip Š',
author_email = 'projects@filips.si',
url = 'https://github.com/filips123/HotBitsPy/',
keywords = 'random-generator, true-random, hotbits, api, generator',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Security :: Cryptography',
],
include_package_data = True,
)