24 lines
641 B
Python
24 lines
641 B
Python
from setuptools import setup, find_packages
|
|
|
|
# The README.txt file should be written in reST so that PyPI can use
|
|
# it to generate your project's PyPI page.
|
|
long_description = open('README.txt').read()
|
|
|
|
|
|
setup(
|
|
name='XStatic',
|
|
version='0.0.1a0',
|
|
description='XStatic base package with minimal support code',
|
|
long_description=long_description,
|
|
classifiers=[],
|
|
keywords=[],
|
|
author='Thomas Waldmann',
|
|
author_email='tw@waldmann-edv.de',
|
|
license='MIT license',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=[], # there should never be a dependency!
|
|
)
|
|
|