Skip to content

Commit a88ef6f

Browse files
committed
Removing some files from the .gitignore file and adding them back to the index.
1 parent 0274102 commit a88ef6f

File tree

3 files changed

+47
-4
lines changed

3 files changed

+47
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ wheels/
2525
.installed.cfg
2626
*.egg
2727
MANIFEST
28-
MANIFEST.in
29-
setup.cfg
30-
setup.py
31-
README.txt
3228

3329
# PyInstaller
3430
# Usually these files are written by a python script from a template

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
prune tests

setup.py

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
from setuptools import setup
2+
3+
4+
try:
5+
from m2r import parse_from_file
6+
long_description = parse_from_file('README.md')
7+
except:
8+
long_description = ''
9+
10+
setup(
11+
name='PySelenium',
12+
license='MIT License',
13+
packages=['pyselenium'],
14+
version='1.0.2',
15+
description='A wrapper for Selenium to allow easy development of automated tests for the web',
16+
author='Felipe Fiali de Sá',
17+
author_email='[email protected]',
18+
url='https://github.com/felipefiali/PySelenium',
19+
download_url='https://github.com/felipefiali/PySelenium/archive/1.0.2.tar.gz',
20+
keywords=['testing', 'test-automation', 'selenium', 'web-automation'],
21+
long_description=long_description,
22+
platforms=[
23+
'Windows',
24+
'Linux',
25+
'MacOS'
26+
],
27+
classifiers=[
28+
'License :: OSI Approved :: MIT License',
29+
'Intended Audience :: Developers',
30+
'Development Status :: 5 - Production/Stable',
31+
'Programming Language :: Python',
32+
'Programming Language :: Python :: 3.6',
33+
'Operating System :: MacOS',
34+
'Operating System :: Microsoft :: Windows',
35+
'Operating System :: POSIX :: Linux',
36+
'Operating System :: Unix',
37+
'Topic :: Software Development',
38+
'Topic :: Software Development :: Libraries :: Python Modules',
39+
'Topic :: Software Development :: Quality Assurance',
40+
'Topic :: Software Development :: Testing',
41+
'Topic :: Utilities'
42+
],
43+
install_requires=[
44+
"selenium"
45+
]
46+
)

0 commit comments

Comments
 (0)