Skip to content

Commit

Permalink
fix:(setup.py) Update setup.py, editorconfig
Browse files Browse the repository at this point in the history
Also remove md readme file for rst
  • Loading branch information
flooie committed Feb 18, 2020
1 parent b62b16c commit 63eef97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trim_trailing_whitespace = true
[*.py]
max_line_length = 79

[*.{js,html,json,css}]
[*.{js,html,json,css,yml,yaml}]
indent_size = 2

[*.md]
Expand Down
32 changes: 0 additions & 32 deletions README.md

This file was deleted.

11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from pip.req import parse_requirements

VERSION = "1.0.0"
AUTHOR = "William E. Palin, Esq."
EMAIL = "bill@free.law"
AUTHOR = "Free Law Project"
EMAIL = "info@free.law"
HERE = os.path.abspath(os.path.dirname(__file__))


Expand All @@ -36,18 +36,19 @@ def read(*parts):
long_description=read("README.rst"),
packages=find_packages(exclude=("tests",)),
include_package_data=True,
package_data={"courts_db": ["data/*", "data/places/*",]},
package_data={"courts_db": ["data/*", "data/places/*", "*"]},
classifiers=[
"Development Status :: 5 - Beta",
"Production Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 63eef97

Please sign in to comment.