-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (38 loc) · 1.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
from setuptools.command.install import install
class inst(install):
def run(self):
install.run(self)
path = (
os.getcwd().replace(" ", r"\ ").replace("(", r"\(").replace(")", r"\)")
+ "/bin/"
)
os.system("sh " + path + "install_teleservices_package.sh")
version = "1.0.1"
setup(
name="teleservices-package",
version=version,
author="Daniel Muyshond, Nicolas Selva, Nicolas Hislaire",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
install_requires=[],
url="https://github.com/IMIO//teleservices-package",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
zip_safe=False,
cmdclass={
"inst": inst,
},
)