forked from asboyer/boyer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (41 loc) · 1004 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
DISTNAME = 'boyer'
VERSION = '0.1.7'
DESCRIPTION = "Andrew Boyer's personal python library"
LONG_DESCRIPTION = """
**boyer** is a python library that contains useful
functions for Andrew Boyer
Available functions:
* Hello
* Delay Print
* Clear
* Memify
* Clean
* Encrypt
* Decrypt
* Capitalize
* Get Num
Report any bugs or email us with questions: [email protected]
"""
LICENSE = 'MIT'
AUTHOR = "Andrew Boyer"
EMAIL = '[email protected]'
URL = 'https://github.com/asboyer/boyer'
KEYWORDS = ['boyer']
REQUIREMENTS = []
PYTHON = ">=3.5"
setup(name=DISTNAME,
packages=['boyer'],
package_dir={'boyer': 'module/boyer'},
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
license=LICENSE,
author=AUTHOR,
author_email=EMAIL,
url=URL,
keywords=KEYWORDS,
install_requires=REQUIREMENTS,
python_requires=PYTHON,
)