forked from thundrio-kh/khbr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 714 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 714 Bytes
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
import khbr
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name = 'khbr',
packages = find_packages(),
include_package_data=True,
version = '3.1.1',
package_data={'': ['KH2/data/**/**']},
long_description = long_description,
long_description_content_type='text/markdown',
license = 'MIT',
author = 'Thundrio',
author_email= 'thundrio@yahoo.com',
maintainer_email = 'thundrio@yahoo.com',
url = 'https://github.com/thundrio-kh/khbr',
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
install_requires=[
'PyYAML',
],
platforms = 'any'
)