We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40af36f commit 294311bCopy full SHA for 294311b
1 file changed
setup.py
@@ -1,12 +1,21 @@
1
from setuptools import setup, find_packages
2
3
-with open('requirements.txt') as f:
4
- required = f.read().splitlines()
+# with open('requirements.txt') as f:
+# required = f.read().splitlines()
5
6
setup(
7
name='wfirma',
8
version='1.0.0',
9
packages=find_packages(),
10
- install_requires=required,
+ # install_requires=required,
11
+
12
+ # version='1.0.0',
13
+ # url='https://github.com/mypackage.git',
14
+ # author='Author Name',
15
+ # author_email='author@gmail.com',
16
+ # description='Description of my package',
17
+ # packages=find_packages(),
18
+ install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
19
20
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
21
)
0 commit comments