Skip to content

Commit c42c9b9

Browse files
committed
not sure what is going on
1 parent 9bdcda9 commit c42c9b9

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

setup.py

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,11 @@
66
from os import path
77

88
from setuptools import setup
9-
from setuptools.command.install import install
109

1110

1211
here = path.abspath(path.dirname(__file__))
1312

1413

15-
class CustomInstall(install):
16-
17-
def run(self):
18-
install.run(self)
19-
20-
2114
def read(*names, **kwargs):
2215
return io.open(
2316
path.join(here, *names),
@@ -76,12 +69,8 @@ def read(*names, **kwargs):
7669
install_requires=requirements,
7770
python_requires='>=2.7',
7871
extras_require=optional_requirements,
79-
entry_points={
80-
'console_scripts': [],
81-
},
72+
entry_points={},
8273
ext_modules=[],
83-
cmdclass={'install': CustomInstall},
84-
scripts=[
85-
'bin/install_compas_sublime',
86-
]
74+
cmdclass={},
75+
scripts=[]
8776
)

0 commit comments

Comments
 (0)