File size: 392 Bytes
a65138c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

setup(name='jingodf',
      version='0.0',
      license='GNU Affero GPL v3',
      author = 'mete0r',
      author_email = 'https://github.com/mete0r',
      packages = ['jingodf'],
      package_data = dict(jingodf=['schema/*']),
      install_requires=['opster == 3.7'],
      entry_points = {
          'console_scripts': ['jingodf = jingodf:main']
      })