-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import prenoms
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name=prenoms.__title__,
version=prenoms.__version__,
author=prenoms.__author__,
author_email='[email protected]',
url="https://github.com/cnovel/prenoms",
description="Générateur de noms aléatoire",
long_description_content_type='text/markdown',
long_description=readme,
license=prenoms.__license__,
packages=find_packages(),
package_data={'prenoms': ['dist.*']},
include_package_data=True,
entry_points={
'console_scripts': [
'prenoms = prenoms.main:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='test_prenoms',
)