Skip to content

Commit

Permalink
BITMAKER-786: Upload entrypoint to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
rodp63 committed May 18, 2021
1 parent 528f38d commit d205491
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ The package implements a wrapper layer to extract job data from environment, pre

## Installation
```
python setup.py install
python setup.py install
```
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from setuptools import setup, find_packages

setup(
name='scraping-product-entrypoint',
name='bitmaker-entrypoint',
version='0.1',
description='Scrapy entrypoint for Bitmaker job runner',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'Scrapy>=1.0',
Expand All @@ -14,4 +16,12 @@
'bm-describe-project = bm_scrapy.__main__:describe_project',
],
},
classifiers=[
'Framework :: Scrapy',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)

0 comments on commit d205491

Please sign in to comment.