summaryrefslogtreecommitdiff
path: root/setup.py
blob: 873feaff762c33ea443f8c11b10547b9ce77d455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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-smart-table',
    description="""smart-table 1.4.13 (XStatic packaging standard)""",
    long_description=long_description,
    maintainer="Richard Jones",
    maintainer_email='r1chardj0n3s@gmail.com',
    use_scm_version=True,
    setup_requires=['setuptools_scm', 'wheel'],
    packages=find_packages(),
    include_package_data=True
)