Last active
December 29, 2015 09:39
-
-
Save vst/21e384122e9163354e4d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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