setlr 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: setlr
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: setlr is a tool for Semantic Extraction, Transformation, and Loading.
5
5
  Home-page: http://packages.python.org/setlr
6
6
  Author: Jamie McCusker
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: setlr
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: setlr is a tool for Semantic Extraction, Transformation, and Loading.
5
5
  Home-page: http://packages.python.org/setlr
6
6
  Author: Jamie McCusker
@@ -3,7 +3,6 @@ README.md
3
3
  setup.cfg
4
4
  setup.py
5
5
  setlr/__init__.py
6
- setlr/_version.py
7
6
  setlr/iterparse_filter.py
8
7
  setlr/sqlite-store.py
9
8
  setlr/trig_store.py
setlr-1.0.1/setup.py ADDED
@@ -0,0 +1,60 @@
1
+ import os
2
+ from setuptools import setup, find_packages
3
+ from sys import argv
4
+ #from _version import __version__
5
+
6
+ __version__='1.0.1'
7
+
8
+ # Utility function to read the README file.
9
+ # Used for the long_description. It's nice, because now 1) we have a top level
10
+ # README file and 2) it's easier to type in the README file than to put a raw
11
+ # string in below ...
12
+ def read(fname):
13
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
14
+
15
+ if '--version' in argv:
16
+ print(__version__)
17
+ else:
18
+ setup(
19
+ name = "setlr",
20
+ version = __version__,
21
+ author = "Jamie McCusker",
22
+ author_email = "mccusj@cs.rpi.edu",
23
+ description = ("setlr is a tool for Semantic Extraction, Transformation, and Loading."),
24
+ license = "Apache License 2.0",
25
+ keywords = "rdf semantic etl",
26
+ url = "http://packages.python.org/setlr",
27
+ packages=['setlr'],
28
+ long_description='''SETLr is a tool for generating RDF graphs, including named graphs, from almost any kind of tabular data.''',
29
+ include_package_data = True,
30
+ install_requires = [
31
+ 'future',
32
+ 'pip>=9.0.0',
33
+ 'cython',
34
+ 'numpy',
35
+ 'rdflib>=6.0.0',
36
+ 'pandas>=0.23.0',
37
+ 'requests',
38
+ 'toposort',
39
+ 'beautifulsoup4',
40
+ 'jinja2',
41
+ 'lxml',
42
+ 'six',
43
+ 'xlrd',
44
+ 'ijson',
45
+ 'click',
46
+ 'tqdm',
47
+ 'requests-testadapter',
48
+ 'python-slugify',
49
+ 'pyshacl[js]'
50
+ ],
51
+ entry_points = {
52
+ 'console_scripts': ['setlr=setlr:main'],
53
+ },
54
+ classifiers=[
55
+ "Development Status :: 5 - Production/Stable",
56
+ "Topic :: Utilities",
57
+ "License :: OSI Approved :: Apache Software License",
58
+ ],
59
+ )
60
+
@@ -1,4 +0,0 @@
1
- __version__='1.0.0'
2
-
3
- if __name__ == '__main__':
4
- print(__version__)
setlr-1.0.0/setup.py DELETED
@@ -1,53 +0,0 @@
1
- import os
2
- from setuptools import setup, find_packages
3
- from setlr._version import __version__
4
-
5
- # Utility function to read the README file.
6
- # Used for the long_description. It's nice, because now 1) we have a top level
7
- # README file and 2) it's easier to type in the README file than to put a raw
8
- # string in below ...
9
- def read(fname):
10
- return open(os.path.join(os.path.dirname(__file__), fname)).read()
11
-
12
- setup(
13
- name = "setlr",
14
- version = __version__,
15
- author = "Jamie McCusker",
16
- author_email = "mccusj@cs.rpi.edu",
17
- description = ("setlr is a tool for Semantic Extraction, Transformation, and Loading."),
18
- license = "Apache License 2.0",
19
- keywords = "rdf semantic etl",
20
- url = "http://packages.python.org/setlr",
21
- packages=['setlr'],
22
- long_description='''SETLr is a tool for generating RDF graphs, including named graphs, from almost any kind of tabular data.''',
23
- include_package_data = True,
24
- install_requires = [
25
- 'future',
26
- 'pip>=9.0.0',
27
- 'cython',
28
- 'numpy',
29
- 'rdflib>=6.0.0',
30
- 'pandas>=0.23.0',
31
- 'requests',
32
- 'toposort',
33
- 'beautifulsoup4',
34
- 'jinja2',
35
- 'lxml',
36
- 'six',
37
- 'xlrd',
38
- 'ijson',
39
- 'click',
40
- 'tqdm',
41
- 'requests-testadapter',
42
- 'python-slugify',
43
- 'pyshacl[js]'
44
- ],
45
- entry_points = {
46
- 'console_scripts': ['setlr=setlr:main'],
47
- },
48
- classifiers=[
49
- "Development Status :: 5 - Production/Stable",
50
- "Topic :: Utilities",
51
- "License :: OSI Approved :: Apache Software License",
52
- ],
53
- )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes