You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
998 B
28 lines
998 B
from setuptools import find_packages, setup
|
|
|
|
VERSION = '0.0.1'
|
|
DESCRIPTION = 'My first Python package'
|
|
LONG_DESCRIPTION = 'My first Python package with a slightly longer description'
|
|
|
|
# Setting up
|
|
setup(
|
|
# the name must match the folder name 'verysimplemodule'
|
|
name="testpythonpackaging",
|
|
version=VERSION,
|
|
author="Alex Shen",
|
|
author_email="<alexshen@sparkle-in-tech.com>",
|
|
description=DESCRIPTION,
|
|
long_description=LONG_DESCRIPTION,
|
|
packages=find_packages(),
|
|
install_requires=[], # add any additional packages that
|
|
# needs to be installed along with your package. Eg: 'caer'
|
|
|
|
keywords=['python', 'first package'],
|
|
classifiers= [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Education",
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Operating System :: Microsoft :: Windows",
|
|
]
|
|
) |