-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.4 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
from setuptools import find_packages, setup
# Note:
# The Hitchiker's guide to python provides an excellent, standard, method for creating python packages:
# http://docs.python-guide.org/en/latest/writing/structure/
#
# To deploy on PYPI follow the instructions at the bottom of:
# https://packaging.python.org/tutorials/distributing-packages/#uploading-your-project-to-pypi
with open("README.md") as f:
readme_text = f.read()
with open("LICENSE") as f:
license_text = f.read()
setup(
name="{{library_name}}",
version="0.0.1",
py_modules=[],
install_requires=["twined >= 0.0.10"],
url="https://www.github.com/{{github_handle}}/{{github_repo_name}}",
license='MIT',
author="{{library_author}}",
description="{{library_description}}",
long_description=readme_text,
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests", "docs")),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
keywords=["{{library_keyword_1}}", "{{library_keyword_2}}"],
)