-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (26 loc) · 1.01 KB
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="userAgentRandomizer",
version="0.1.8",
author="Matt Waller",
author_email="mattghwaller@gmail.com",
description="Automatically Generate User agents",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MattWaller/userAgentRandomizer",
project_urls={
"Bug Tracker": "https://github.com/MattWaller/userAgentRandomizer/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['userAgentRandomizer'], # root folder of your package
package_dir={'/': ''}, # directory which contains the python code
package_data={'/': ['assets/*.txt']}, # directory which contains your csvs
python_requires=">=3.6",
include_package_data=True,
)