~ok2/sdam/0.4

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Oleksandr Kozachuk
  • Date: 2015-05-10 18:41:07 UTC
  • Revision ID: ddeus.lp@mailnull.com-20150510184107-ci3vf01oy2bsj9q2
Small fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from setuptools import setup, find_packages
2
2
setup(
3
3
    name = "sdam",
4
 
    version = "0.3",
 
4
    version = "0.3.1",
5
5
    packages = find_packages(),
6
 
    scripts = ['sdam.py'],
 
6
    entry_points = {
 
7
        'console_scripts': ['sdam = sdam:main'],
 
8
    },
7
9
    install_requires = ['twisted>=15.0'],
8
10
    author = "Oleksandr Kozachuk",
9
11
    author_email = "ddeus.lp@mailnull.com",