Skip to content

Commit

Permalink
Merge pull request OpenSIPS#14 from Otoru/update-setup.py
Browse files Browse the repository at this point in the history
Small changes to setup.py
  • Loading branch information
razvancrainea authored Jun 7, 2019
2 parents f1717ac + 9eca5c4 commit fd0ec97
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@
"""

import os

try:
from setuptools import setup, Command
except ImportError:
from distutils.core import setup, Command

from opensipscli import defaults

with open("README.md", "r") as fh:

here = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(here, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read()

class CleanCommand(Command):
Expand All @@ -49,13 +54,19 @@ def run(self):
maintainer_email = "[email protected]",
description = "OpenSIPS Command Line Interface",
long_description = long_description,
long_description_content_type='text/markdown',
url = "https://github.com/OpenSIPS/opensips-cli",
download_url = "https://github.com/OpenSIPS/opensips-cli/archive/master.zip",
packages = [
"opensipscli",
"opensipscli.modules",
"opensipscli.communication"
],
install_requires=[
'mysqlclient',
'sqlalchemy',
'sqlalchemy-utils'
],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
Expand Down

0 comments on commit fd0ec97

Please sign in to comment.