-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (37 loc) · 1.13 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
#!/usr/bin/env python3
import os
from setuptools import setup
import twuewand
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='twuewand',
description='twuewand random number generator',
long_description=read('README.md'),
long_description_content_type="text/markdown",
version=twuewand.__version__,
license='MPL-2.0',
platforms=['Unix'],
author='Ryan Finnie',
author_email='[email protected]',
url='http://www.finnie.org/software/twuewand/',
download_url='http://www.finnie.org/software/twuewand/',
packages=['twuewand'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities',
],
extras_require={
'AES': ['pycrypto'],
},
entry_points={
'console_scripts': [
'twuewand = twuewand.cli:main',
],
},
)