We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bdcda9 commit c42c9b9Copy full SHA for c42c9b9
setup.py
@@ -6,18 +6,11 @@
6
from os import path
7
8
from setuptools import setup
9
-from setuptools.command.install import install
10
11
12
here = path.abspath(path.dirname(__file__))
13
14
15
-class CustomInstall(install):
16
-
17
- def run(self):
18
- install.run(self)
19
20
21
def read(*names, **kwargs):
22
return io.open(
23
path.join(here, *names),
@@ -76,12 +69,8 @@ def read(*names, **kwargs):
76
69
install_requires=requirements,
77
70
python_requires='>=2.7',
78
71
extras_require=optional_requirements,
79
- entry_points={
80
- 'console_scripts': [],
81
- },
72
+ entry_points={},
82
73
ext_modules=[],
83
- cmdclass={'install': CustomInstall},
84
- scripts=[
85
- 'bin/install_compas_sublime',
86
- ]
74
+ cmdclass={},
75
+ scripts=[]
87
)
0 commit comments