This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (40 loc) · 1.7 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
40
41
42
43
from setuptools import setup, find_packages
with open("README.md") as README:
readme = str(README.read())
with open("requirements.txt") as reqs:
lines = reqs.read().split("\n")
install_requires = [line for line in lines if line]
setup(
name="pewanalytics",
version="1.1.3.dev0",
description="Utilities for text processing and statistical analysis from Pew Research Center",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/pewresearch/pewanalytics",
author="Pew Research Center",
author_email="[email protected]",
install_requires=install_requires,
packages=find_packages(exclude=["contrib", "docs", "tests"]),
include_package_data=True,
keywords="statistics, nlp, text analysis, text processing, sampling, pew pew pew",
license="GPLv2+",
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)