-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
048e0f5
commit f39eeb7
Showing
5 changed files
with
38 additions
and
61 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
|
||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
||
from setuptools import find_packages, setup | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
VERSION = "2.0.0" | ||
DOWNLOAD_URL = \ | ||
'https://github.com/ggravlingen/pygleif/archive/{}.zip'.format(VERSION) | ||
VERSION = "3.0.0" | ||
DOWNLOAD_URL = 'https://github.com/ggravlingen/pygleif/archive/{}.zip'.format(VERSION) | ||
|
||
PACKAGES = find_packages(exclude=['tests', 'tests.*']) | ||
|
||
setup( | ||
name='pygleif', | ||
packages=PACKAGES, | ||
python_requires='>=3.8', | ||
version=VERSION, | ||
description='API for LEI', | ||
long_description=long_description, | ||
author='ggravlingen', | ||
author_email='no@email.com', | ||
url='https://github.com/ggravlingen/pygleif', | ||
license='MIT', | ||
keywords='lei-code lei api gleif leicode', | ||
download_url=DOWNLOAD_URL | ||
name='pygleif', | ||
packages=PACKAGES, | ||
python_requires='>=3.8', | ||
version=VERSION, | ||
description='API for LEI', | ||
long_description=long_description, | ||
author='ggravlingen', | ||
author_email='no@email.com', | ||
url='https://github.com/ggravlingen/pygleif', | ||
license='MIT', | ||
keywords='lei-code lei api gleif leicode', | ||
download_url=DOWNLOAD_URL, | ||
) |