Skip to content

Instantly share code, notes, and snippets.

@vst
Last active December 29, 2015 09:39
Show Gist options
  • Save vst/21e384122e9163354e4d to your computer and use it in GitHub Desktop.
Save vst/21e384122e9163354e4d to your computer and use it in GitHub Desktop.
"""
Provides the setup module.
"""
from ___YOURMODULE___ import __version__
from setuptools import setup
from setuptools import find_packages
import os
## The absolute directory path:
HERE = os.path.abspath(os.path.dirname(__file__))
## The README file contents:
README = open(os.path.join(HERE, "README.md")).read()
## The LICENSE file contents:
LICENSE = open(os.path.join(HERE, "LICENSE")).read()
## Requirements for installation:
REQUIRED_LIBRARIES = [
]
## Setup now:
setup(
name="___YOURMODULE___",
version=__version__,
description="___YOURMODULEDESCRIPTION___",
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: Proprietary",
],
keywords="___YOURMODULEKEYWORDS___",
author="___YOURNAME___",
author_email="___YOUREMAILADDRESS___",
url="___YOURURL___",
license=LICENSE,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRED_LIBRARIES,
dependency_links=[
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment