-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1020 Bytes
/
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
"""setup"""
from distutils.core import setup
import whyp
description=whyp.__doc__
setup(
name=whyp.__name__,
version=whyp.__version__,
description=description.splitlines()[0],
long_description=description,
url='https://github.com/jalanb/%s' % whyp.__name__,
packages=['whyp'],
download_url='https://github.com/jalanb/%s/tarball/v%s' % (
whyp.__name__, whyp.__version__),
license='MIT License',
author='jalanb',
author_email='github@al-got-rhythm.net',
platforms='any',
classifiers=[
'Programming Language :: Python :: 3.7',
'Development Status :: 2 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Utilities'
],
install_requires=[
'pprintpp',
'pysyte',
'pyyaml',
'requests',
],
scripts=['bin/whyp'],
)