We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ef9ffd commit 72f5640Copy full SHA for 72f5640
2 files changed
MANIFEST.in
@@ -1,2 +1 @@
1
include README.rst
2
-include LICENSE
setup.py
@@ -1,12 +1,11 @@
+import os
from setuptools import setup, find_packages
3
-VERSION = 0.1.1
4
+VERSION = 0.2
5
-with open('README.md') as fl:
6
- LONG_DESCRIPTION = fl.read()
+with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
7
+ LONG_DESCRIPTION = readme.read()
8
-with open('LICENSE') as fl:
9
- LICENSE = fl.read()
10
11
setup(
12
name='forex-python',
@@ -16,7 +15,6 @@
16
15
url='https://github.com/MicroPyramid/forex-python',
17
description='Foreign exchange rates and currency conversion.',
18
long_description=LONG_DESCRIPTION,
19
- license=LICENSE,
20
packages=find_packages(exclude=['tests', 'tests.*']),
21
include_package_data=True,
22
install_requires=[
0 commit comments