-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
48 lines (40 loc) · 1.26 KB
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
46
47
48
import os
from distutils.core import setup
from setuptools import find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open('requirements.txt', 'r') as f:
install_requires = list()
dependency_links = list()
for line in f:
re = line.strip()
if re:
if re.startswith('git+') or re.startswith('svn+') or re.startswith('hg+'):
dependency_links.append(re)
else:
install_requires.append(re)
packages = find_packages()
setup(
name='JuNE',
version='0.0.1',
packages=packages,
url='https://github.com/DanielRodriguezRguez/TFG-Extraccion-metadatos-Jupyter-Notebook',
license='BSD-3-Clause',
author='Daniel Rodriguez',
description='Extractor de metadatos sobre Jupyter Notebooks.',
long_description=read("README.md"),
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=install_requires,
dependency_links=dependency_links,
python_requires="=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
],
entry_points={
'console_scripts': [
'JuNE = JuNE.main:main',
],
}
)