Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 1e048ef0e0c3caaff2688caa829596802750c514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# setuptools import
from setuptools import setup, find_packages

setup(name="datastore-reader",
      version="0.1",
      description="Sugar DS reader for backup analysis",
      long_description="""
      """,
      author="Florent Pigout",
      author_email="florent@toopy.org",
      url="",
      license='MIT',
      install_requires = [
          ],
      packages = find_packages(),
      include_package_data=True,
      zip_safe=False,
      classifiers = [
          ],
      )