|
31 | 31 |
|
32 | 32 | version = '0.1.7' |
33 | 33 |
|
34 | | -readme = '' |
35 | 34 | with open('README.rst') as f: |
36 | 35 | readme = f.read() |
37 | 36 |
|
38 | | -setup(name='buttons', |
39 | | - author='EvieePy', |
40 | | - url='https://github.com/EvieePy/buttons', |
41 | | - version=version, |
42 | | - packages=['discord/ext/buttons'], |
43 | | - license='MIT', |
44 | | - description='A simple to use, interactive session and paginator with custom buttons for discord.py.', |
45 | | - long_description=readme, |
46 | | - include_package_data=True, |
47 | | - install_requires=requirements, |
48 | | - classifiers=[ |
| 37 | +setup( |
| 38 | + name='buttons', |
| 39 | + author='EvieePy', |
| 40 | + url='https://github.com/EvieePy/buttons', |
| 41 | + version=version, |
| 42 | + packages=['discord/ext/buttons'], |
| 43 | + license='MIT', |
| 44 | + description='A simple to use, interactive session and paginator with custom buttons for discord.py.', |
| 45 | + long_description=readme, |
| 46 | + include_package_data=True, |
| 47 | + install_requires=requirements, |
| 48 | + classifiers=[ |
49 | 49 | 'License :: OSI Approved :: MIT License', |
50 | 50 | 'Intended Audience :: Developers', |
51 | 51 | 'Natural Language :: English', |
52 | 52 | 'Operating System :: OS Independent', |
53 | | - 'Programming Language :: Python :: 3.6', |
54 | 53 | 'Programming Language :: Python :: 3.7', |
| 54 | + 'Programming Language :: Python :: 3.6', |
55 | 55 | 'Topic :: Internet', |
56 | 56 | 'Topic :: Software Development :: Libraries', |
57 | 57 | 'Topic :: Software Development :: Libraries :: Python Modules', |
58 | 58 | 'Topic :: Utilities', |
59 | | - ]) |
| 59 | + ] |
| 60 | +) |
0 commit comments