Skip to content

Commit

Permalink
Make PyPi ready
Browse files Browse the repository at this point in the history
  • Loading branch information
joriscram committed Aug 5, 2020
1 parent 1ab92dd commit 3ea28fa
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 24 deletions.
9 changes: 0 additions & 9 deletions SetupLicenses.ps1

This file was deleted.

14 changes: 0 additions & 14 deletions SetupPackage.ps1

This file was deleted.

3 changes: 3 additions & 0 deletions setup.cfg
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
12 changes: 11 additions & 1 deletion setup.py
@@ -1,20 +1,30 @@
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name='SBTi-Finance Temperature Alignment Tool',
version='0.1',
description='This package helps companies and financial institutions to assess the temperature alignment of current'
'targets, commitments, and investment and lending portfolios, and to use this information to develop '
'targets for official validation by the SBTi.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Ortec Finance',
author_email='finance@sciencebasedtargets.org',
packages=find_packages(),
url = 'https://github.com/OFBDABV/SBTi',
download_url = 'https://github.com/OFBDABV/SBTi/archive/v_01.tar.gz',
keywords = ['Climate', 'SBTi', 'Finance'],
package_data={
'SBTi': ['inputs/sr15_mapping.xlsx', 'inputs/regression_model_summary.xlsx',
'inputs/current-Companies-Taking-Action-191.xlsx'],
},
include_package_data=True,
install_requires=[],
install_requires=['pandas',
'xlrd'],
python_requires='>=3.6',
extras_require={
'dev': [
'nose2',
Expand Down

0 comments on commit 3ea28fa

Please sign in to comment.