summaryrefslogtreecommitdiff
path: root/setup.py
blob: 236e4ae46dd954d7a114147f8d24e97a743f06dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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!
)