-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
39 lines (35 loc) · 1.52 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 setuptools
from glob import glob
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
setuptools.setup(
name="random_profile",
version="2.0.0",
author="Deepak Raj",
author_email="deepak008@live.com",
description="Generate Random Profile",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requirements,
data_files=[('assets', glob('random_profile/assets/*'))],
url="https://github.com/codePerfectPlus/Random-Profile-Generator",
packages=setuptools.find_packages(),
project_urls={"Documentation": "https://pycontributors.readthedocs.io/projects/randomprofilegenerator/en/latest/",
"Source": "https://github.com/Py-Contributors/RandomProfileGenerator",
"Tracker": "https://github.com/Py-Contributors/RandomProfileGenerator/issues"},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Environment :: Plugins"],
entry_points={
"console_scripts": ['rp = random_profile.cli:main',
"random_profile = random_profile.cli:main"],
},
)