forked from target/halogen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 884 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
"""The halogen python package."""
# coding=utf-8
import os
from setuptools import setup, find_packages
from halogen import __version__
setup(
name="halogen",
version=__version__,
packages=find_packages(exclude=['docs', 'tests', 'tools', 'utils']),
url="https://github.com/target/halogen/",
license='Apache 2.0',
author="Wyatt Roersma, Kyle Eaton",
author_email="[email protected]",
description="This is the Python halogen library.",
include_package_data=True,
zip_safe=False,
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache 2.0',
'Programming Language :: Python :: 3.7'],
package_data={
'halogen': ['*.txt'], 'halogen:data': ['*.txt', '*.yml', '*.json']
},
scripts=['halogen/halogencli.py'],
)