|
7 | 7 | from setuptools import setup |
8 | 8 | from setuptools.command.test import test as TestCommand |
9 | 9 |
|
10 | | -with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: |
11 | | - README = readme.read() |
12 | | - |
13 | 10 | HERE = os.path.abspath(os.path.dirname(__file__)) |
14 | 11 | PACKAGE_NAME = 'mailjet-rest' |
15 | 12 | VERSION = 'v1.0.0' |
|
21 | 18 | |
22 | 19 | maintainer='Guillaume Badi', |
23 | 20 | maintainer_email='[email protected]', |
| 21 | + download_url='https://github.com/mailjet/mailjet-apiv3-python/tarball/v1.0.0', |
24 | 22 | url='https://github.com/mailjet/mailjet-apiv3-python', |
25 | 23 | description=('Mailjet V3 API wrapper'), |
26 | | - long_description=README, |
27 | 24 | classifiers=['Development Status :: 3 - Alpha', |
28 | 25 | 'Environment :: Console', |
29 | 26 | 'Intended Audience :: Developers', |
|
33 | 30 | 'Programming Language :: Python :: 2.6', |
34 | 31 | 'Programming Language :: Python :: 2.7', |
35 | 32 | 'Programming Language :: Python :: 3.2', |
| 33 | + 'Programming Language :: Python :: 3.5', |
36 | 34 | 'Topic :: Utilities'], |
37 | 35 | license='GPLv3', |
38 | 36 | keywords='mailjet api wrapper email client', |
|
0 commit comments